5be8833b3991ef3abce2c59502bfebda7df013e0,src/main/java/org/springframework/cloud/spinnaker/ModuleController.java,ModuleController,status,#String#,70
Before Change
return ResponseEntity.ok(new Resource<>(
moduleService.getStatus(module),
linkTo(methodOn(ModuleController.class).status(module)).withSelfRel(),
linkTo(methodOn(ModuleController.class).statuses()).withRel("all"),
linkTo(methodOn(ApiController.class).root()).withRel("root")
));
}
After Change
return ResponseEntity.ok(new Resource<>(
moduleService.getStatus(module, api, org, space, email, password, namespace),
linkTo(methodOn(ModuleController.class).status(module, api, org, space, email, password, namespace)).withSelfRel(),
linkTo(methodOn(ModuleController.class).statuses(api, org, space, email, password, namespace)).withRel("all"),
linkTo(methodOn(ApiController.class).root(api, org, space, email, password, namespace)).withRel("root")
));
}